I am inserting unicode data in SQL server using insert statement as follows,

INSERT INTO tablename (col1,col2) values (N'value1,value2)

WHERE col1 is of NVARCHAR datatype.

I want to run the above sql statement using stored procedure This procedure will take 2 parameters please help me in solving this problem.